Comparison operations
| Operator |
Description |
| = |
Equals |
| > |
Greater than |
| < |
Less than |
| >= |
Greater than or equal to |
| <= |
Less than or equal to |
| <> |
Not equal to |
Examples:
- 3<4 (This expression evaluates as TRUE.)
- 6>8 (This expression evaluates as FALSE.)
- TRUE = FALSE (This expression evaluates as FALSE.)
- b = "yes", where b is a variable with the value "yes" (This expression evaluates as TRUE.)
See also: